home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / turttleo.swf / scripts / DefineSprite_33_bubble2 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  279 b   |  15 lines

  1. var yspeed = 0;
  2. this._yscale *= 0.5;
  3. this._xscale *= 0.5;
  4. this.onEnterFrame = function()
  5. {
  6.    this._y += yspeed;
  7.    this._yscale *= 0.94;
  8.    this._xscale *= 0.94;
  9.    yspeed -= 0.1 + 1 * Math.random();
  10.    if(Math.random() > 0.8)
  11.    {
  12.       this.prevFrame();
  13.    }
  14. };
  15.